about summary refs log tree commit diff
path: root/pkgs/development/python-modules/od/default.nix
blob: de64e2f8fdc81056e2e1ed9540c899df431c8e68 (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
24
25
{ lib, buildPythonPackage, fetchPypi, unittest2 }:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-uGkj2Z8mLg51IV+FOqwZl1hT7zVyjmD1CcY/VbH4tKk=";
  };

  # repeated_test no longer exists in nixpkgs
  # also see: https://github.com/epsy/od/issues/1
  doCheck = false;
  checkInputs = [
    unittest2
  ];

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

}