1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-28 00:22:13 +00:00

Merge pull request #142060 from fabaff/bump-open-garage

python3Packages.open-garage: 0.1.5 -> 0.1.6
This commit is contained in:
Fabian Affolter 2021-10-19 08:59:22 +02:00 committed by GitHub
commit f92719248a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,14 +8,15 @@
buildPythonPackage rec {
pname = "open-garage";
version = "0.1.5";
version = "0.1.6";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "Danielhiversen";
repo = "pyOpenGarage";
rev = version;
sha256 = "1iqcqkbb1ik5lmsvwgy6i780x6y3wlm1gx257anxyvp1b21gm24p";
sha256 = "sha256-vm51Fjej0OQ7LftisS/tsnxZxa5c/j7eGIROMsEcXNE=";
};
propagatedBuildInputs = [
@ -26,7 +27,9 @@ buildPythonPackage rec {
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "opengarage" ];
pythonImportsCheck = [
"opengarage"
];
meta = with lib; {
description = "Python module to communicate with opengarage.io";