Merge pull request #309756 from fabaff/winacl-bump
python312Packages.winacl: 0.1.8 -> 0.1.9
This commit is contained in:
commit
35726c229c
1 changed files with 13 additions and 18 deletions
|
@ -1,37 +1,32 @@
|
||||||
{ lib
|
{
|
||||||
, buildPythonPackage
|
lib,
|
||||||
, cryptography
|
buildPythonPackage,
|
||||||
, fetchPypi
|
cryptography,
|
||||||
, pythonOlder
|
fetchPypi,
|
||||||
|
pythonOlder,
|
||||||
|
setuptools,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "winacl";
|
pname = "winacl";
|
||||||
version = "0.1.8";
|
version = "0.1.9";
|
||||||
format = "setuptools";
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-RCcaMCVi3lFin2jvFUDUDzom57wBc2RrAaZ3nO2tZEw=";
|
hash = "sha256-r3DC7DAXi/njyKHEjCXoeBI1/iwbMhrbRuLyrh+NSqs=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
build-system = [ setuptools ];
|
||||||
cryptography
|
|
||||||
];
|
|
||||||
|
|
||||||
postPatch = ''
|
dependencies = [ cryptography ];
|
||||||
substituteInPlace setup.py \
|
|
||||||
--replace "cryptography>=38.0.1" "cryptography"
|
|
||||||
'';
|
|
||||||
|
|
||||||
# Project doesn't have tests
|
# Project doesn't have tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
pythonImportsCheck = [
|
pythonImportsCheck = [ "winacl" ];
|
||||||
"winacl"
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python module for ACL/ACE/Security descriptor manipulation";
|
description = "Python module for ACL/ACE/Security descriptor manipulation";
|
||||||
|
|
Loading…
Reference in a new issue