Files
nixpkgs/pkgs/development/python-modules/orderedset/default.nix
Jan Tojnar 986799d95f Remove myself from maintainers
I do not have time for dealing with issues like https://github.com/NixOS/nixpkgs/issues/87000
2020-05-06 00:00:52 +02:00

19 lines
441 B
Nix

{ 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 = [ ];
};
}