mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
python.pkgs.pytest-asyncio: minor improvements
This commit is contained in:
parent
0726d95372
commit
b8f7cc5419
@ -1,18 +1,20 @@
|
||||
{ stdenv, buildPythonPackage, fetchurl, pytest, isPy3k }:
|
||||
{ stdenv, buildPythonPackage, fetchPypi, pytest, isPy3k }:
|
||||
buildPythonPackage rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "pytest-asyncio";
|
||||
version = "0.8.0";
|
||||
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://pypi/p/${pname}/${name}.tar.gz";
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "f32804bb58a66e13a3eda11f8942a71b1b6a30466b0d2ffe9214787aab0e172e";
|
||||
};
|
||||
|
||||
buildInputs = [ pytest ];
|
||||
|
||||
# No tests in archive
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "library for testing asyncio code with pytest";
|
||||
license = licenses.asl20;
|
||||
|
Loading…
Reference in New Issue
Block a user