1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 03:48:57 +00:00
nixpkgs/pkgs/development/python-modules/paperspace/default.nix

27 lines
651 B
Nix
Raw Normal View History

{ stdenv, fetchPypi, buildPythonPackage
, boto3, requests
}:
buildPythonPackage rec {
pname = "paperspace";
2018-11-20 10:58:36 +00:00
version = "0.0.12";
src = fetchPypi {
inherit pname version;
2018-11-20 10:58:36 +00:00
sha256 = "9e7192ee9270768c0dba44969d49730c17d2f955c201798706cdcbc407310d64";
};
propagatedBuildInputs = [ boto3 requests ];
# tries to use /homeless-shelter to mimic container usage, etc
doCheck = false;
meta = with stdenv.lib; {
description = "Python API for Paperspace Cloud";
homepage = https://paperspace.com;
license = licenses.isc;
platforms = platforms.unix;
maintainers = with maintainers; [ thoughtpolice ];
};
}