pythonPackages.txrequests: refactor move to python-modules
This commit is contained in:
35
pkgs/development/python-modules/txrequests/default.nix
Normal file
35
pkgs/development/python-modules/txrequests/default.nix
Normal file
@@ -0,0 +1,35 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, twisted
|
||||
, requests
|
||||
, cryptography
|
||||
, python
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "txrequests";
|
||||
version = "0.9.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0kkxxd17ar5gyjkz9yrrdr15a64qw6ym60ndi0zbwx2s634yfafw";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ twisted requests cryptography ];
|
||||
|
||||
# Require network access
|
||||
doCheck = false;
|
||||
|
||||
checkPhase = ''
|
||||
${python.interpreter} -m unittest discover
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Asynchronous Python HTTP for Humans.";
|
||||
homepage = "https://github.com/tardyp/txrequests";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ nand0p ];
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user