diff options
| author | MatÃas Lang <shareman1204@gmail.com> | 2020-07-27 01:57:20 -0300 |
|---|---|---|
| committer | Jon <jonringer@users.noreply.github.com> | 2020-08-15 01:00:30 -0700 |
| commit | cf86eb8a2b61e64abeacdf9fd62da1a38b3e09e2 (patch) | |
| tree | 08ec8635298d0ba1c87b82a31d799a8266685a54 /pkgs/development/python-modules/pytest-pythonpath | |
| parent | 2e40e4578fd63899c077fc4804d97e4ba7b2d22d (diff) | |
pythonPackages.pytest-pythonpath: init at 0.7.3
Diffstat (limited to 'pkgs/development/python-modules/pytest-pythonpath')
| -rw-r--r-- | pkgs/development/python-modules/pytest-pythonpath/default.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pytest-pythonpath/default.nix b/pkgs/development/python-modules/pytest-pythonpath/default.nix new file mode 100644 index 000000000000..4194b7bd0e94 --- /dev/null +++ b/pkgs/development/python-modules/pytest-pythonpath/default.nix @@ -0,0 +1,26 @@ +{ buildPythonPackage, fetchPypi, lib, pytest }: + +buildPythonPackage rec { + pname = "pytest-pythonpath"; + version = "0.7.3"; + + src = fetchPypi { + inherit pname version; + sha256 = "0qhxh0z2b3p52v3i0za9mrmjnb1nlvvyi2g23rf88b3xrrm59z33"; + }; + + propagatedBuildInputs = [ pytest ]; + checkInputs = [ pytest ]; + + checkPhase = '' + pytest + ''; + + meta = with lib; { + description = + "Pytest plugin for adding to the PYTHONPATH from command line or configs"; + homepage = "https://github.com/bigsassy/pytest-pythonpath"; + maintainers = with maintainers; [ cript0nauta ]; + license = licenses.mit; + }; +} |
