mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pythonPackages.orderedmultidict: init at 1.0.1
This commit is contained in:
parent
4ea8f051ac
commit
018d0459f8
2 changed files with 24 additions and 0 deletions
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 { };
|
||||
|
||||
orderedmultidict = callPackage ../development/python-modules/orderedmultidict { };
|
||||
|
||||
ortools = (toPythonModule (pkgs.or-tools.override {
|
||||
inherit (self) python;
|
||||
pythonProtobuf = self.protobuf;
|
||||
|
|
Loading…
Reference in a new issue