1{ lib
2, buildPythonPackage
3, fetchPypi
4, setuptools-scm
5, pytest-runner
6, pytest
7}:
8
9buildPythonPackage rec {
10 pname = "multiset";
11 version = "3.0.1";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "e45671cae8385a8e6248a9b07a3a83280c2d0cc4312713058cfbacdc5ec9973e";
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}