diff --git a/pkgs/build-support/nix-prefetch-github/default.nix b/pkgs/build-support/nix-prefetch-github/default.nix new file mode 100644 index 000000000000..48297e583afe --- /dev/null +++ b/pkgs/build-support/nix-prefetch-github/default.nix @@ -0,0 +1,30 @@ +{ python3 +, fetchFromGitHub +, stdenv +}: + +python3.pkgs.buildPythonApplication rec { + pname = "nix-prefetch-github"; + version = "1.3"; + + src = fetchFromGitHub { + owner = "seppeljordan"; + repo = "nix-prefetch-github"; + rev = "${version}"; + sha256 = "1rinbv1q4q8m27ih6l81w1lsmwn6cz7q3iyjiycklywpi8684dh6"; + }; + + propagatedBuildInputs = with python3.pkgs; [ + attrs + click + effect + jinja2 + requests + ]; + meta = with stdenv.lib; { + description = "Prefetch sources from github"; + homepage = https://github.com/seppeljordan/nix-prefetch-github; + license = licenses.gpl3; + maintainers = [ maintainers.seppeljordan ]; + }; +} diff --git a/pkgs/development/python-modules/effect/default.nix b/pkgs/development/python-modules/effect/default.nix index d5fdf2d3f85d..2738d2283395 100644 --- a/pkgs/development/python-modules/effect/default.nix +++ b/pkgs/development/python-modules/effect/default.nix @@ -1,28 +1,32 @@ { buildPythonPackage , fetchPypi , lib -, attrs , six +, attrs +, pytest +, testtools }: -let +buildPythonPackage rec { + version = "0.11.0"; + pname = "effect"; -version = "0.11.0"; -pname = "effect"; - -in -buildPythonPackage { - inherit version pname; src = fetchPypi { inherit pname version; sha256 = "1q75w4magkqd8ggabhhzzxmxakpdnn0vdg7ygj89zdc9yl7561q6"; }; + checkInputs = [ + pytest + testtools + ]; propagatedBuildInputs = [ six attrs ]; - doCheck = false; + checkPhase = '' + pytest . + ''; meta = with lib; { - description = "pure effects for Python"; + description = "Pure effects for Python"; homepage = https://github.com/python-effect/effect; license = licenses.mit; }; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d6759098dfaa..7e2c9fc7e1ab 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -20838,6 +20838,8 @@ with pkgs; nix-pin = callPackage ../tools/package-management/nix-pin { }; + nix-prefetch-github = callPackage ../build-support/nix-prefetch-github {}; + inherit (callPackages ../tools/package-management/nix-prefetch-scripts { }) nix-prefetch-bzr nix-prefetch-cvs