about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/multiset/default.nix
blob: 020617abebf4c12efd5bb1b46877ee5542acf640 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib
, buildPythonPackage
, fetchPypi
, setuptools_scm
, pytestrunner
, pytest
}:

buildPythonPackage rec {
  pname = "multiset";
  version = "2.1.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "4801569c08bfcecfe7b0927b17f079c90f8607aca8fecaf42ded92b737162bc7";
  };

  buildInputs = [ setuptools_scm pytestrunner ];
  checkInputs = [ pytest ];

  meta = with lib; {
    description = "An implementation of a multiset";
    homepage = "https://github.com/wheerd/multiset";
    license = licenses.mit;
    maintainers = [ maintainers.costrouc ];
  };
}