aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/orderedmultidict/default.nix
blob: 82c08d655356b6bf395620f6c8165f6a5c66f626 (plain)
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 ];
  };
}