nixpkgs/pkgs/development/python-modules/od/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
555 B
Nix
Raw Normal View History

2022-01-11 21:31:45 +00:00
{ lib, buildPythonPackage, fetchPypi, unittest2 }:
2018-12-30 15:11:27 +00:00
buildPythonPackage rec {
pname = "od";
2022-02-08 15:32:36 +00:00
version = "2.0.2";
2018-12-30 15:11:27 +00:00
src = fetchPypi {
inherit pname version;
2022-02-08 15:32:36 +00:00
sha256 = "sha256-uGkj2Z8mLg51IV+FOqwZl1hT7zVyjmD1CcY/VbH4tKk=";
2018-12-30 15:11:27 +00:00
};
2022-01-11 21:31:45 +00:00
# repeated_test no longer exists in nixpkgs
# also see: https://github.com/epsy/od/issues/1
doCheck = false;
2018-12-30 15:11:27 +00:00
checkInputs = [
unittest2
];
meta = with lib; {
description = "Shorthand syntax for building OrderedDicts";
homepage = "https://github.com/epsy/od";
2018-12-30 15:11:27 +00:00
license = licenses.mit;
};
}