about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/makefun/default.nix
blob: 12655c0d6de17d43a422fdceae0883a7d50a4b45 (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
{ lib
, fetchPypi
, buildPythonPackage
, setuptools-scm
}:

buildPythonPackage rec {
  pname = "makefun";
  version = "1.11.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "033eed65e2c1804fca84161a38d1fc8bb8650d32a89ac1c5dc7e54b2b2c2e88c";
  };

  nativeBuildInputs = [ setuptools-scm ];

  # Disabling tests for now due to various (transitive) dependencies on modules
  # from @smarie which are, as of yet, not part of nixpkgs. Also introduces
  # a tricky dependency: makefun tests depend on pytest-cases, installing
  # pytest-cases depends on makefun.
  doCheck = false;

  pythonImportsCheck = [ "makefun" ];

  meta = with lib; {
    homepage = "https://github.com/smarie/python-makefun";
    description = "Small library to dynamically create python functions";
    license = licenses.bsd2;
    maintainers = with maintainers; [ veehaitch ];
  };
}