Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / multipledispatch / default.nix
blob0953e46a5545f74af1d4c437319df8aa1b7c0392
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , six
5 }:
7 buildPythonPackage rec {
8   pname = "multipledispatch";
9   version = "1.0.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "sha256-XIOZFUZcaCBsPpxHM1eQghbCg4O0JTYeXRRFlL+Fp+A=";
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   };