Fabian Affolter 2024-04-23 22:45:17 +02:00
parent 44cbc4f749
commit 6c5126194b

View File

@ -2,30 +2,37 @@
, buildPythonPackage , buildPythonPackage
, cryptography , cryptography
, fetchFromGitHub , fetchFromGitHub
, powershell
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, setuptools
, xmldiff , xmldiff
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "psrpcore"; pname = "psrpcore";
version = "0.2.2"; version = "0.3.0";
format = "pyproject"; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.8";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jborean93"; owner = "jborean93";
repo = pname; repo = "psrpcore";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-6d5HQJEH/x+V0rpmQkprMlH1n151KyUF6d4tM9W5TFs="; hash = "sha256-YThumRHMOTyhP6/EmNEew47v/X4Y1aYg1nvgZJz2XUg=";
}; };
propagatedBuildInputs = [ build-system = [
setuptools
];
dependencies = [
cryptography cryptography
]; ];
nativeCheckInputs = [ nativeCheckInputs = [
powershell
pytestCheckHook pytestCheckHook
xmldiff xmldiff
]; ];