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