python312Packages.pysatochip: fix build (#352942)

This commit is contained in:
jopejoe1 2024-11-06 21:26:27 +01:00 committed by GitHub
commit 90fcec9bc9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,7 +1,7 @@
{
lib,
buildPythonPackage,
fetchPypi,
fetchFromGitHub,
certifi,
cryptography,
ecdsa,
@ -17,18 +17,13 @@ buildPythonPackage rec {
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-ccyBvQ00p/uDULzGeJIhIJIiRRrFitsp271wep74DHI=";
src = fetchFromGitHub {
owner = "toporin";
repo = "pysatochip";
rev = "v${version}";
hash = "sha256-7wA9erk2OA1FyNSzOSWJzjyp9QeYq6C+YA8B0Dk2iQE=";
};
postPatch = ''
substituteInPlace requirements.txt \
--replace "cryptography==3.3.2" "cryptography" \
--replace "ecdsa==0.15" "ecdsa" \
--replace "pyopenssl==20.0.0" "pyopenssl"
'';
propagatedBuildInputs = [
cryptography
ecdsa