pythonPackages: paperspace 0.0.11

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2018-06-10 02:27:10 -05:00
parent d1eb255036
commit 6d6ff86c85
2 changed files with 28 additions and 0 deletions

View 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 ];
};
}

View File

@ -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.
pants = pkgs.pants;
paperspace = callPackage ../development/python-modules/paperspace { };
paperwork-backend = callPackage ../applications/office/paperwork/backend.nix { };
papis-python-rofi = callPackage ../development/python-modules/papis-python-rofi { };