pythonPackages.od: init at 1.0
This commit is contained in:
parent
24571cded5
commit
1c924c7aeb
23
pkgs/development/python-modules/od/default.nix
Normal file
23
pkgs/development/python-modules/od/default.nix
Normal file
@ -0,0 +1,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;
|
||||
};
|
||||
|
||||
}
|
@ -3226,6 +3226,8 @@ in {
|
||||
|
||||
ordereddict = callPackage ../development/python-modules/ordereddict { };
|
||||
|
||||
od = callPackage ../development/python-modules/od { };
|
||||
|
||||
orderedset = callPackage ../development/python-modules/orderedset { };
|
||||
|
||||
python-otr = callPackage ../development/python-modules/python-otr { };
|
||||
|
Loading…
Reference in New Issue
Block a user