mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 06:03:40 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
43 lines
943 B
Nix
43 lines
943 B
Nix
{ lib
|
|
, python
|
|
, buildPythonPackage
|
|
, fetchFromGitLab
|
|
, isPy27
|
|
, jinja2
|
|
, pytest
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "debts";
|
|
version = "0.5";
|
|
|
|
# pypi does not ship tests
|
|
src = fetchFromGitLab {
|
|
domain = "framagit.org";
|
|
owner = "almet";
|
|
repo = "debts";
|
|
rev = "d887bd8b340172d1c9bbcca6426529b8d1c2a241"; # no tags
|
|
sha256 = "1d66nka81mv9c07mki78lp5hdajqv4cq6aq2k7bh3mhkc5hwnwlg";
|
|
};
|
|
|
|
disabled = isPy27;
|
|
|
|
propagatedBuildInputs = [ jinja2 ];
|
|
|
|
nativeCheckInputs = [ pytest ];
|
|
|
|
# for some reason tests only work if the module is properly installed
|
|
checkPhase = ''
|
|
rm -r debts
|
|
export PYTHONPATH=$out/${python.sitePackages}:$PYTHONPATH
|
|
py.test tests
|
|
'';
|
|
|
|
meta = with lib; {
|
|
inherit (src.meta) homepage;
|
|
description = "A simple library and cli-tool to help you solve some debts settlement scenarios";
|
|
license = licenses.beerware;
|
|
maintainers = [ maintainers.symphorien ];
|
|
};
|
|
}
|