3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/nix-prefetch-github/default.nix

37 lines
734 B
Nix
Raw Normal View History

{ fetchPypi
, lib
, buildPythonPackage
, attrs
, click
, effect
, jinja2
}:
buildPythonPackage rec {
pname = "nix-prefetch-github";
2020-06-02 15:35:26 +01:00
version = "2.4";
src = fetchPypi {
inherit pname version;
2020-06-02 15:35:26 +01:00
sha256 = "sha256-PVB/cL0NVB5pHxRMjg8TLatvIvHjfCvaRWBanVHYT+E=";
};
2020-06-02 15:35:26 +01:00
# The tests for this package require nix and network access. That's
# why we cannot execute them inside the building process.
doCheck = false;
propagatedBuildInputs = [
attrs
click
effect
jinja2
];
meta = with lib; {
description = "Prefetch sources from github";
homepage = "https://github.com/seppeljordan/nix-prefetch-github";
license = licenses.gpl3;
maintainers = with maintainers; [ seppeljordan ];
};
}