nixpkgs/pkgs/development/python-modules/intervaltree/default.nix
Frederik Rietdijk 1623c8371c buildPythonPackage: rename nix_run_setup.py to nix_run_setup
If the extension is .py it tends to be picked up by tools, breaking for
example tests.
2018-01-20 13:31:14 +01:00

32 lines
764 B
Nix

{ stdenv, buildPythonPackage, fetchPypi
, python, pytest, sortedcontainers }:
buildPythonPackage rec {
version = "2.1.0";
pname = "intervaltree";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "02w191m9zxkcjqr1kv2slxvhymwhj3jnsyy3a28b837pi15q19dc";
};
buildInputs = [ pytest ];
propagatedBuildInputs = [ sortedcontainers ];
checkPhase = ''
runHook preCheck
rm build -rf
${python.interpreter} nix_run_setup test
runHook postCheck
'';
meta = with stdenv.lib; {
description = "Editable interval tree data structure for Python 2 and 3";
homepage = https://github.com/chaimleib/intervaltree;
license = [ licenses.asl20 ];
maintainers = [ maintainers.bennofs ];
};
}