mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
python3Packages.nmapthon2: init at 0.1.2
This commit is contained in:
parent
6617c39075
commit
68c4b01f72
34
pkgs/development/python-modules/nmapthon2/default.nix
Normal file
34
pkgs/development/python-modules/nmapthon2/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ lib
|
||||
, appdirs
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "nmapthon2";
|
||||
version = "0.1.2";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-6mGMB8nW6CqTPxgc1fveh6fJo/t+jpUS6rJ2VR2gU/g=";
|
||||
};
|
||||
|
||||
# Tests are not part of the PyPI source and source is not tagged
|
||||
# https://github.com/cblopez/nmapthon2/issues/3
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"nmapthon2"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python library to automate nmap";
|
||||
homepage = "https://github.com/cblopez/nmapthon2";
|
||||
license = with licenses; [ asl20 ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -5222,6 +5222,8 @@ in {
|
||||
|
||||
nltk = callPackage ../development/python-modules/nltk { };
|
||||
|
||||
nmapthon2 = callPackage ../development/python-modules/nmapthon2 { };
|
||||
|
||||
nmigen-boards = callPackage ../development/python-modules/nmigen-boards { };
|
||||
|
||||
nmigen = callPackage ../development/python-modules/nmigen { };
|
||||
|
Loading…
Reference in New Issue
Block a user