Merge pull request #213659 from LeSuisse/fetchfromgh-rpi-gpio2
python3Packages.rpi-gpio2: uses fetchFromGitHub
This commit is contained in:
commit
53e5c00e24
1 changed files with 6 additions and 4 deletions
|
@ -1,13 +1,15 @@
|
||||||
{ lib, libgpiod, buildPythonPackage, fetchurl }:
|
{ lib, libgpiod, buildPythonPackage, fetchFromGitHub }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "rpi-gpio2";
|
pname = "rpi-gpio2";
|
||||||
version = "0.3.0a3";
|
version = "0.3.0a3";
|
||||||
|
|
||||||
# PyPi source does not work for some reason
|
# PyPi source does not work for some reason
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/underground-software/RPi.GPIO2/archive/refs/tags/v${version}.tar.gz";
|
owner = "underground-software";
|
||||||
sha256 = "sha256-AY1AD2Yu66eJUqB4OStZnUeEhmISLVRrTOAcmEHjuOM=";
|
repo = "RPi.GPIO2";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-8HQbEnO+4Ppo2Z3HBulbBcSKJF1bNNQYz8k6aUt65oc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
|
Loading…
Reference in a new issue