summary refs log tree commit diff
path: root/pkgs/development/python-modules/singledispatch/default.nix
blob: 837271b4d57c7d8b529fa941ec2643faf2a3f5b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ lib
, buildPythonPackage
, fetchPypi
, six
, setuptools-scm
, toml
}:

buildPythonPackage rec {
  pname = "singledispatch";
  version = "3.7.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "c1a4d5c1da310c3fd8fccfb8d4e1cb7df076148fd5d858a819e37fffe44f3092";
  };

  nativeBuildInputs = [
    setuptools-scm
    toml
  ];

  propagatedBuildInputs = [ six ];

  # pypi singledispatch tarbal does not contain tests
  doCheck = false;

  meta = {
    description = "This library brings functools.singledispatch from Python 3.4 to Python 2.6-3.3.";
    homepage = "https://docs.python.org/3/library/functools.html";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ costrouc ];
  };
}