Unverified Commit 03f93e08 authored by Sandro Jäckel's avatar Sandro Jäckel
Browse files

python3Packages.pynose: init at 1.4.8

parent 4f78d856
Loading
Loading
Loading
Loading
+30 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };