1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pythonPackages.txrequests: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-29 11:42:54 -04:00
parent cf540a7e08
commit 1ab1ff4963
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573
2 changed files with 36 additions and 23 deletions

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

View file

@ -4290,29 +4290,7 @@ in {
txgithub = callPackage ../development/python-modules/txgithub { };
txrequests = buildPythonPackage rec {
name = "${pname}-${version}";
pname = "txrequests";
version = "0.9.2";
src = pkgs.fetchurl {
url = "mirror://pypi/t/${pname}/${name}.tar.gz";
sha256 = "0kkxxd17ar5gyjkz9yrrdr15a64qw6ym60ndi0zbwx2s634yfafw";
};
propagatedBuildInputs = with self; [ twisted requests cryptography ];
# Require network access
doCheck = false;
checkPhase = ''
${python.interpreter} -m unittest discover
'';
meta = {
description = "Asynchronous Python HTTP for Humans.";
homepage = "https://github.com/tardyp/txrequests";
license = licenses.asl20;
maintainers = with maintainers; [ nand0p ];
platforms = platforms.all;
};
};
txrequests = callPackage ../development/python-modules/txrequests { };
txamqp = buildPythonPackage rec {
name = "txamqp-${version}";