1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-16 18:03:22 +00:00
nixpkgs/pkgs/development/python-modules/treq/default.nix
Fernando J Pando 50b0e5bfa1 treq: 17.3.1
- enables and fixes tests
- makes docs properly
- used fetchpypi
- tested nixos python 27/34
2017-05-30 14:51:57 -04:00

54 lines
1 KiB
Nix

{ stdenv, fetchPypi, buildPythonPackage, service-identity, requests, six,
mock, twisted, incremental, pep8, sphinx, openssl, pyopenssl, tox }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "treq";
version = "17.3.1";
src = fetchPypi {
inherit pname version;
sha256 = "1xhcpvsl3xqw0dq9sixk80iwyiv17djigp3815sy5pfgvvggcfii";
};
buildInputs = [
service-identity
requests
twisted
incremental
sphinx
six
openssl
pyopenssl
tox
];
checkInputs = [
pep8
mock
];
postPatch = ''
rm -fv src/treq/test/test_treq_integration.py
'';
postBuild = ''
# build documentation and install in $out
tox -e docs
mkdir -pv $out/docs
cp -rv docs/* $out/docs/
'';
checkPhase = ''
${pep8}/bin/pep8 --ignore=E902 treq
trial treq
'';
meta = with stdenv.lib; {
homepage = http://github.com/twisted/treq;
description = "A requests-like API built on top of twisted.web's Agent";
license = licenses.mit;
maintainers = with maintainers; [ nand0p ];
};
}