pythonPackages: paperspace 0.0.11
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
d1eb255036
commit
6d6ff86c85
26
pkgs/development/python-modules/paperspace/default.nix
Normal file
26
pkgs/development/python-modules/paperspace/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv, fetchPypi, buildPythonPackage
|
||||||
|
, boto3, requests
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "paperspace";
|
||||||
|
version = "0.0.11";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0z19arikcjpfvp3bgssnlhplm1qzgw95s3r5fnsyf7nwmc4pvvpa";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ boto3 requests ];
|
||||||
|
|
||||||
|
doCheck = false; # bizarre test failure
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Python API for Paperspace Cloud";
|
||||||
|
homepage = https://paperspace.com;
|
||||||
|
license = licenses.isc;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = with maintainers; [ thoughtpolice ];
|
||||||
|
};
|
||||||
|
}
|
@ -3731,6 +3731,8 @@ in {
|
|||||||
# These used to be here but were moved to all-packages, but I'll leave them around for a while.
|
# These used to be here but were moved to all-packages, but I'll leave them around for a while.
|
||||||
pants = pkgs.pants;
|
pants = pkgs.pants;
|
||||||
|
|
||||||
|
paperspace = callPackage ../development/python-modules/paperspace { };
|
||||||
|
|
||||||
paperwork-backend = callPackage ../applications/office/paperwork/backend.nix { };
|
paperwork-backend = callPackage ../applications/office/paperwork/backend.nix { };
|
||||||
|
|
||||||
papis-python-rofi = callPackage ../development/python-modules/papis-python-rofi { };
|
papis-python-rofi = callPackage ../development/python-modules/papis-python-rofi { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user