summary refs log tree commit diff
path: root/pkgs/development/python-modules/od/default.nix
blob: 0aaa40e17582e0f3bc5cdea2283233c5819f794b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, buildPythonPackage, fetchPypi, unittest2, repeated_test }:

buildPythonPackage rec {
  pname = "od";
  version = "1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1az30snc3w6s4k1pi7mspcv8y0kp3ihf3ly44z517nszmz9lrjfi";
  };

  checkInputs = [
    repeated_test
    unittest2
  ];

  meta = with lib; {
    description = "Shorthand syntax for building OrderedDicts";
    homepage = https://github.com/epsy/od;
    license = licenses.mit;
  };

}