Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / by-name / py / pyp / package.nix
blob1ba4629220db671c9dcf2c7595f09e6a96265578
1 { lib
2 , fetchFromGitHub
3 , python3
4 , bc
5 , jq
6 }:
8 let
9   version = "1.1.0";
10 in python3.pkgs.buildPythonApplication {
11   pname = "pyp";
12   inherit version;
13   format = "pyproject";
15   src = fetchFromGitHub {
16     owner = "hauntsaninja";
17     repo = "pyp";
18     rev = "v${version}";
19     hash = "sha256-A1Ip41kxH17BakHEWEuymfa24eBEl5FIHAWL+iZFM4I=";
20   };
22   nativeBuildInputs = [
23     python3.pkgs.flit-core
24   ];
26   nativeCheckInputs = [
27     python3.pkgs.pytestCheckHook
28     bc
29     jq
30   ];
32   # without this, the tests fail because they are unable to find the pyp tool
33   # itself...
34   preCheck = ''
35      _OLD_PATH_=$PATH
36      PATH=$out/bin:$PATH
37   '';
39   # And a cleanup
40   postCheck = ''
41     PATH=$_OLD_PATH_
42   '';
44   meta = {
45     homepage = "https://github.com/hauntsaninja/pyp";
46     description = "Easily run Python at the shell";
47     changelog = "https://github.com/hauntsaninja/pyp/blob/${version}/CHANGELOG.md";
48     license = lib.licenses.mit;
49     maintainers = with lib.maintainers; [ AndersonTorres ];
50   };