nixpkgs/pkgs/development/python-modules/zetup/default.nix

37 lines
942 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi
, setuptools_scm, pathpy, nbconvert
2019-07-13 10:21:00 +01:00
, pytest }:
buildPythonPackage rec {
pname = "zetup";
2019-07-13 10:21:00 +01:00
version = "0.2.52";
src = fetchPypi {
inherit pname version;
2019-07-13 10:21:00 +01:00
sha256 = "9ce97276acf0425499251c5eb700f6a3820adc52859df1e03c6d0f0b88a452cd";
};
2019-03-15 20:32:03 +00:00
# Python 3.7 compatibility
# See https://github.com/zimmermanncode/zetup/pull/1
postPatch = ''
substituteInPlace zetup/zetup_config.py \
--replace "'3.6']" "'3.6', '3.7']"
'';
checkPhase = ''
2019-07-13 10:21:00 +01:00
py.test test -k "not TestObject" --deselect=test/test_zetup_config.py::test_classifiers
'';
2019-07-13 10:21:00 +01:00
checkInputs = [ pytest pathpy nbconvert ];
propagatedBuildInputs = [ setuptools_scm ];
meta = with stdenv.lib; {
description = ''
Zimmermann's Extensible Tools for Unified Project setups
'';
homepage = https://github.com/zimmermanncode/zetup;
license = licenses.gpl3Plus;
platforms = platforms.unix;
};
}