mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
pythonPackages.pytest-annotate: init at 1.0.2
This commit is contained in:
parent
979f91567d
commit
648acbabca
2 changed files with 30 additions and 0 deletions
28
pkgs/development/python-modules/pytest-annotate/default.nix
Normal file
28
pkgs/development/python-modules/pytest-annotate/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pyannotate
|
||||
, pytest
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "1.0.2";
|
||||
pname = "pytest-annotate";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "03e4dece2d1aa91666034f1b2e8bb7a7b8c6be11baf3cf2929b26eea5c6e86f3";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pyannotate pytest ];
|
||||
|
||||
# not testing for a testing module...
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/kensho-technologies/pytest-annotate;
|
||||
description = "Generate PyAnnotate annotations from your pytest tests";
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
}
|
|
@ -1919,6 +1919,8 @@ in {
|
|||
|
||||
pytest-asyncio = callPackage ../development/python-modules/pytest-asyncio { };
|
||||
|
||||
pytest-annotate = callPackage ../development/python-modules/pytest-annotate { };
|
||||
|
||||
pytest-aiohttp = callPackage ../development/python-modules/pytest-aiohttp { };
|
||||
|
||||
pytest-benchmark = callPackage ../development/python-modules/pytest-benchmark { };
|
||||
|
|
Loading…
Reference in a new issue