mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
Merge #122358: python39Packages.random2: fix build
This commit is contained in:
commit
55fff66bfc
@ -2,6 +2,7 @@
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPyPy
|
||||
, fetchpatch
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -15,6 +16,14 @@ buildPythonPackage rec {
|
||||
sha256 = "34ad30aac341039872401595df9ab2c9dc36d0b7c077db1cea9ade430ed1c007";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# Patch test suite for python >= 3.9
|
||||
(fetchpatch {
|
||||
url = "https://github.com/strichter/random2/pull/3/commits/1bac6355d9c65de847cc445d782c466778b94fbd.patch";
|
||||
sha256 = "064137pg1ilv3f9r10123lqbqz45070jca8pjjyp6gpfd0yk74pi";
|
||||
})
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://pypi.python.org/pypi/random2";
|
||||
description = "Python 3 compatible Python 2 `random` Module";
|
||||
|
Loading…
Reference in New Issue
Block a user