python3Packages.pynose: init at 1.4.8

This commit is contained in:
Sandro Jäckel 2024-02-12 21:37:48 +01:00
parent 4f78d8564d
commit 03f93e082f
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
}:
buildPythonPackage rec {
pname = "pynose";
version = "1.4.8";
pyproject = true;
src = fetchFromGitHub {
owner = "mdmintz";
repo = "pynose";
rev = "v${version}";
hash = "sha256-V6jZBEkEAKzClA/3s+Lyfm9xExgCEJbLCNnIHmZ94E4=";
};
nativeBuildInputs = [ setuptools ];
# has no tests
doCheck = false;
meta = with lib; {
description = "pynose fixes nose to extend unittest and make testing easier";
homepage = "https://github.com/mdmintz/pynose";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}

View File

@ -9542,6 +9542,8 @@ self: super: with self; {
pynobo = callPackage ../development/python-modules/pynobo { };
pynose = callPackage ../development/python-modules/pynose { };
pynuki = callPackage ../development/python-modules/pynuki { };
pynut2 = callPackage ../development/python-modules/pynut2 { };