summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2018-10-09 21:23:37 -0400
committerBenjamin Hipple <bhipple@protonmail.com>2018-10-09 21:23:37 -0400
commitb721a1b9a91a0a6b203be286dedd37dfbd9f3f7c (patch)
tree1d3c37e966ae5237c6d4aec69eb81995e59862f2 /pkgs/development/python-modules/pytest
parentdd428b8f5f5a4790f16aa2377a38a72297ed3249 (diff)
downloadnixpkgs-b721a1b9a91a0a6b203be286dedd37dfbd9f3f7c.tar
nixpkgs-b721a1b9a91a0a6b203be286dedd37dfbd9f3f7c.tar.gz
nixpkgs-b721a1b9a91a0a6b203be286dedd37dfbd9f3f7c.tar.bz2
nixpkgs-b721a1b9a91a0a6b203be286dedd37dfbd9f3f7c.tar.lz
nixpkgs-b721a1b9a91a0a6b203be286dedd37dfbd9f3f7c.tar.xz
nixpkgs-b721a1b9a91a0a6b203be286dedd37dfbd9f3f7c.tar.zst
nixpkgs-b721a1b9a91a0a6b203be286dedd37dfbd9f3f7c.zip
pytest: add license
Diffstat (limited to 'pkgs/development/python-modules/pytest')
-rw-r--r--pkgs/development/python-modules/pytest/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pytest/default.nix b/pkgs/development/python-modules/pytest/default.nix
index 6146159ad0a..deb9cbdb7d0 100644
--- a/pkgs/development/python-modules/pytest/default.nix
+++ b/pkgs/development/python-modules/pytest/default.nix
@@ -37,8 +37,10 @@ buildPythonPackage rec {
   '';
 
   meta = with stdenv.lib; {
+    homepage = https://docs.pytest.org;
+    description = "Framework for writing tests";
     maintainers = with maintainers; [ domenkozar lovek323 madjar lsix ];
+    license = licenses.mit;
     platforms = platforms.unix;
-    description = "Framework for writing tests";
   };
 }