1{ lib
2, buildPythonPackage
3, fetchPypi
4, setuptools-scm
5, pytest-runner
6, pytest
7}:
8
9buildPythonPackage rec {
10 pname = "multiset";
11 version = "2.1.1";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "4801569c08bfcecfe7b0927b17f079c90f8607aca8fecaf42ded92b737162bc7";
16 };
17
18 buildInputs = [ setuptools-scm pytest-runner ];
19 checkInputs = [ pytest ];
20
21 meta = with lib; {
22 description = "An implementation of a multiset";
23 homepage = "https://github.com/wheerd/multiset";
24 license = licenses.mit;
25 maintainers = [ maintainers.costrouc ];
26 };
27}