nixpkgs/pkgs/development/python-modules/path.py/default.nix

35 lines
647 B
Nix
Raw Normal View History

2017-06-06 09:26:49 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, setuptools_scm
, pytestrunner
, pytest
, glibcLocales
}:
buildPythonPackage rec {
pname = "path.py";
2018-02-17 13:21:23 +00:00
version = "11.0";
name = pname + "-" + version;
2017-06-06 09:26:49 +00:00
src = fetchPypi {
inherit pname version;
2018-02-17 13:21:23 +00:00
sha256 = "16134e5b287aba4a4125a6722e7837cf2a149fccc5000c500ae6c71a5525488b";
2017-06-06 09:26:49 +00:00
};
checkInputs = [ pytest pytestrunner ];
buildInputs = [setuptools_scm glibcLocales ];
LC_ALL="en_US.UTF-8";
meta = {
description = "A module wrapper for os.path";
homepage = https://github.com/jaraco/path.py;
2017-06-06 09:26:49 +00:00
license = lib.licenses.mit;
};
checkPhase = ''
py.test test_path.py
'';
}