ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / multipledispatch / default.nix
blobed55b0421cd89a730aecc47462003cb8104c898d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , six
5 }:
7 buildPythonPackage rec {
8   pname = "multipledispatch";
9   version = "0.6.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "a7ab1451fd0bf9b92cab3edbd7b205622fb767aeefb4fb536c2e3de9e0a38bea";
14   };
16   # No tests in archive
17   doCheck = false;
19   propagatedBuildInputs = [ six ];
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   };