python3Packages.pynose: init at 1.4.8
This commit is contained in:
parent
4f78d8564d
commit
03f93e082f
30
pkgs/development/python-modules/pynose/default.nix
Normal file
30
pkgs/development/python-modules/pynose/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user