pythonPackages.orderedmultidict: init at 1.0.1

This commit is contained in:
Ivan Solyankin 2019-08-12 16:04:38 +03:00 committed by Frederik Rietdijk
parent 4ea8f051ac
commit 018d0459f8
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, buildPythonPackage, fetchPypi, flake8, six }:
buildPythonPackage rec {
pname = "orderedmultidict";
version = "1.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "1bc2v0yflsxjyyjx4q9wqx0j3bvzcw9z87d5pz4iqac7bsxhn1q4";
};
checkInputs = [ flake8 ];
propagatedBuildInputs = [ six ];
meta = with stdenv.lib; {
description = "Ordered Multivalue Dictionary.";
homepage = https://github.com/gruns/orderedmultidict;
license = licenses.publicDomain;
maintainers = with maintainers; [ vanzef ];
};
}

View file

@ -921,6 +921,8 @@ in {
ordered-set = callPackage ../development/python-modules/ordered-set { };
orderedmultidict = callPackage ../development/python-modules/orderedmultidict { };
ortools = (toPythonModule (pkgs.or-tools.override {
inherit (self) python;
pythonProtobuf = self.protobuf;