mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-09 12:05:50 +03:00
python3Packages.python-picnic-api: init at 1.1.0
This commit is contained in:
parent
92c77733ac
commit
9aac17868f
2 changed files with 36 additions and 0 deletions
|
@ -0,0 +1,34 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, requests
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "python-picnic-api";
|
||||||
|
version = "1.1.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1axqw4bs3wa9mdac35h7r25v3i5g7v55cvyy48c4sg31dxnr4wcp";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
requests
|
||||||
|
];
|
||||||
|
|
||||||
|
# Project doesn't ship tests
|
||||||
|
# https://github.com/MikeBrink/python-picnic-api/issues/13
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"python_picnic_api"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python wrapper for the Picnic API";
|
||||||
|
homepage = "https://github.com/MikeBrink/python-picnic-api";
|
||||||
|
license = with licenses; [ asl20 ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -6968,6 +6968,8 @@ in {
|
||||||
|
|
||||||
python-periphery = callPackage ../development/python-modules/python-periphery { };
|
python-periphery = callPackage ../development/python-modules/python-periphery { };
|
||||||
|
|
||||||
|
python-picnic-api = callPackage ../development/python-modules/python-picnic-api { };
|
||||||
|
|
||||||
python-pipedrive = callPackage ../development/python-modules/python-pipedrive { };
|
python-pipedrive = callPackage ../development/python-modules/python-pipedrive { };
|
||||||
|
|
||||||
python-prctl = callPackage ../development/python-modules/python-prctl { };
|
python-prctl = callPackage ../development/python-modules/python-prctl { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue