mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
Merge pull request #210533 from wegank/posix-ipc-source
python3Packages.posix_ipc: fix source
This commit is contained in:
commit
05cbcd8653
@ -1,6 +1,6 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, fetchFromGitHub
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
@ -11,9 +11,11 @@ buildPythonPackage rec {
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-4kVroM+y7luhQSFFDo2CWzxKFGH8oHYSIKq2bUERy7c=";
|
||||
src = fetchFromGitHub {
|
||||
owner = "osvenskan";
|
||||
repo = "posix_ipc";
|
||||
rev = "rel${version}";
|
||||
hash = "sha256-xK5CkThqVFVMIxBtgUfHIRNRfmBxKa/DWBYQg7QHl/M=";
|
||||
};
|
||||
|
||||
pythonImportsCheckHook = [
|
||||
|
Loading…
Reference in New Issue
Block a user