python310Packages.nclib: add format

This commit is contained in:
Fabian Affolter 2023-08-08 08:39:47 +02:00 committed by GitHub
parent 3c6b57b1a2
commit a665570399
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,9 @@
buildPythonPackage rec {
pname = "nclib";
version = "1.0.5";
disabled = pythonOlder "3.5";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
@ -16,7 +18,10 @@ buildPythonPackage rec {
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "nclib" ];
pythonImportsCheck = [
"nclib"
];
meta = with lib; {
description = "Python module that provides netcat features";