mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 08:43:06 +00:00
python310Packages.psrpcore: init at 0.1.2
This commit is contained in:
parent
7ab4ac4a10
commit
aa7ef89f48
44
pkgs/development/python-modules/psrpcore/default.nix
Normal file
44
pkgs/development/python-modules/psrpcore/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user