python310Packages.psrpcore: init at 0.1.2

This commit is contained in:
Fabian Affolter 2022-06-09 09:00:28 +02:00
parent 7ab4ac4a10
commit aa7ef89f48
2 changed files with 48 additions and 2 deletions

View File

@ -0,0 +1,44 @@
{ lib
, buildPythonPackage
, cryptography
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, xmldiff
}:
buildPythonPackage rec {
pname = "psrpcore";
version = "0.1.2";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "jborean93";
repo = pname;
rev = "v${version}";
hash = "sha256-f1NGE+wSgi8yqBicZZRfUqzinsqazuIaoAje2y+dK1w=";
};
propagatedBuildInputs = [
cryptography
];
checkInputs = [
pytestCheckHook
xmldiff
];
pythonImportsCheck = [
"psrpcore"
];
meta = with lib; {
description = "Library for the PowerShell Remoting Protocol (PSRP)";
homepage = "https://github.com/jborean93/psrpcore";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -6445,11 +6445,13 @@ in {
pencompy = callPackage ../development/python-modules/pencompy { };
phonopy = callPackage ../development/python-modules/phonopy { };
pixcat = callPackage ../development/python-modules/pixcat { };
pyprecice = callPackage ../development/python-modules/pyprecice { };
psrpcore = callPackage ../development/python-modules/psrpcore { };
phonopy = callPackage ../development/python-modules/phonopy { };
pyprecice = callPackage ../development/python-modules/pyprecice { };
phpserialize = callPackage ../development/python-modules/phpserialize { };