summary refs log tree commit diff
path: root/pkgs/development/python-modules/orderedmultidict/default.nix
blob: f144c43da06f2ae8adca96f634b9b114bce36c67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 ];
  };
}