1{ lib
2, buildPythonPackage
3, fetchPypi
4, six
5}:
6
7buildPythonPackage rec {
8 pname = "multipledispatch";
9 version = "1.0.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "sha256-XIOZFUZcaCBsPpxHM1eQghbCg4O0JTYeXRRFlL+Fp+A=";
14 };
15
16 # No tests in archive
17 doCheck = false;
18
19 propagatedBuildInputs = [ six ];
20
21 meta = {
22 homepage = "https://github.com/mrocklin/multipledispatch/";
23 description = "A relatively sane approach to multiple dispatch in Python";
24 license = lib.licenses.bsd3;
25 maintainers = with lib.maintainers; [ fridh ];
26 };
27}