python.pkgs.orderedset init at 2.0.1
This commit is contained in:
parent
7372d3bf31
commit
44a4370b1f
18
pkgs/development/python-modules/orderedset/default.nix
Normal file
18
pkgs/development/python-modules/orderedset/default.nix
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "orderedset";
|
||||||
|
version = "2.0.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "11643qr12ypxfffcminlsgl9xz751b2d0pnjl6zn8vfhxddjr57f";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "An Ordered Set implementation in Cython";
|
||||||
|
homepage = https://pypi.python.org/pypi/orderedset;
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = maintainers.jtojnar;
|
||||||
|
};
|
||||||
|
}
|
@ -8828,6 +8828,8 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
orderedset = callPackage ../development/python-modules/orderedset { };
|
||||||
|
|
||||||
python-otr = buildPythonPackage rec {
|
python-otr = buildPythonPackage rec {
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
pname = "python-otr";
|
pname = "python-otr";
|
||||||
|
Loading…
Reference in New Issue
Block a user