rtv: use python3Packages
This commit is contained in:
parent
a576b2ea64
commit
c5758bd67e
@ -1,9 +1,9 @@
|
|||||||
{ stdenv, fetchFromGitHub, pythonPackages }:
|
{ stdenv, fetchFromGitHub, python3Packages }:
|
||||||
|
|
||||||
with pythonPackages;
|
with python3Packages;
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
version = "1.23.0";
|
version = "1.23.0";
|
||||||
name = "rtv-${version}";
|
pname = "rtv";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "michael-lazar";
|
owner = "michael-lazar";
|
||||||
@ -19,7 +19,7 @@ buildPythonApplication rec {
|
|||||||
py.test
|
py.test
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildInputs = [
|
checkInputs = [
|
||||||
coverage
|
coverage
|
||||||
coveralls
|
coveralls
|
||||||
docopt
|
docopt
|
||||||
@ -30,18 +30,11 @@ buildPythonApplication rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
backports_functools_lru_cache
|
|
||||||
beautifulsoup4
|
beautifulsoup4
|
||||||
configparser
|
|
||||||
contextlib2
|
|
||||||
decorator
|
decorator
|
||||||
kitchen
|
kitchen
|
||||||
mailcap-fix
|
|
||||||
mccabe
|
|
||||||
requests
|
requests
|
||||||
six
|
six
|
||||||
tornado
|
|
||||||
pyyaml
|
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user