pythonPackages.orderedmultidict: init at 1.0.1
This commit is contained in:
parent
4ea8f051ac
commit
018d0459f8
22
pkgs/development/python-modules/orderedmultidict/default.nix
Normal file
22
pkgs/development/python-modules/orderedmultidict/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -921,6 +921,8 @@ in {
|
|||||||
|
|
||||||
ordered-set = callPackage ../development/python-modules/ordered-set { };
|
ordered-set = callPackage ../development/python-modules/ordered-set { };
|
||||||
|
|
||||||
|
orderedmultidict = callPackage ../development/python-modules/orderedmultidict { };
|
||||||
|
|
||||||
ortools = (toPythonModule (pkgs.or-tools.override {
|
ortools = (toPythonModule (pkgs.or-tools.override {
|
||||||
inherit (self) python;
|
inherit (self) python;
|
||||||
pythonProtobuf = self.protobuf;
|
pythonProtobuf = self.protobuf;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user