1{ lib
2, buildPythonPackage
3, fetchPypi
4, six
5}:
6
7buildPythonPackage rec {
8 pname = "multipledispatch";
9 version = "0.6.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "a7ab1451fd0bf9b92cab3edbd7b205622fb767aeefb4fb536c2e3de9e0a38bea";
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}