Skip to content

Commit

Permalink
Merge pull request #328917 from lavafroth/python3Packages.deform/nose
Browse files Browse the repository at this point in the history
python3Packages.deform: remove nose dependency
  • Loading branch information
emilazy authored Jul 22, 2024
2 parents 90ad173 + ca61124 commit ffed10e
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions pkgs/development/python-modules/deform/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
peppercorn,
translationstring,
zope-deprecation,
nose,
setuptools,
coverage,
beautifulsoup4,
flaky,
Expand All @@ -19,14 +19,16 @@
buildPythonPackage rec {
pname = "deform";
version = "2.0.15";
format = "setuptools";
pyproject = true;

src = fetchPypi {
inherit pname version;
sha256 = "1e912937650c1dbb830079dd9c039950762a230223a567740fbf1b23f1090367";
hash = "sha256-HpEpN2UMHbuDAHndnAOZUHYqIwIjpWd0D78bI/EJA2c=";
};

propagatedBuildInputs = [
build-system = [ setuptools ];

dependencies = [
chameleon
colander
iso8601
Expand All @@ -36,18 +38,18 @@ buildPythonPackage rec {
];

nativeCheckInputs = [
nose
coverage
beautifulsoup4
flaky
pyramid
pytestCheckHook
];

meta = with lib; {
meta = {
description = "Form library with advanced features like nested forms";
homepage = "https://docs.pylonsproject.org/projects/deform/en/latest/";
license = licenses.free; # http://www.repoze.org/LICENSE.txt
maintainers = with maintainers; [ domenkozar ];
# https://github.com/Pylons/deform/blob/fdc43d59de7d11b0e3ba1b92835b780cfe181719/LICENSE.txt
license = [ lib.licenses.bsd3 lib.licenses.cc-by-30 ];
maintainers = with lib.maintainers; [ domenkozar ];
};
}

0 comments on commit ffed10e

Please sign in to comment.