Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / codepy / default.nix
blobccf1eeaad9eff140f57f9182d0899e1917673c30
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pytools
5 , appdirs
6 , six
7 , cgen
8 }:
10 buildPythonPackage rec {
11   pname = "codepy";
12   version = "2019.1";
14   src = fetchFromGitHub {
15     owner = "inducer";
16     repo = pname;
17     rev = "v${version}";
18     hash = "sha256-viMfB/nDrvDA/IGRZEX+yXylxbbmqbh/fgdYXBzK0zM=";
19   };
21   buildInputs = [ pytools six cgen ];
22   propagatedBuildInputs = [ appdirs ];
24   pythonImportsCheck = [ "codepy" ];
26   # Tests are broken
27   doCheck = false;
29   meta = with lib; {
30     homepage = "https://github.com/inducer/codepy";
31     description = "Generate and execute native code at run time, from Python";
32     license = licenses.mit;
33     maintainers = with maintainers; [ atila ];
34   };