mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 04:13:01 +00:00
python3Packages.assay: init at unstable-2022-01-19
This commit is contained in:
parent
9ac9449a0a
commit
c81163c916
22
pkgs/development/python-modules/assay/default.nix
Normal file
22
pkgs/development/python-modules/assay/default.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "assay";
|
||||||
|
version = "unstable-2022-01-19";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "brandon-rhodes";
|
||||||
|
repo = pname;
|
||||||
|
rev = "bb62d1f7d51d798b05a88045fff3a2ff92c299c3";
|
||||||
|
sha256 = "sha256-FuAD74mFJ9F9AMgB3vPmODAlZKgPR7FQ4yn7HEBS5Rw=";
|
||||||
|
};
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "assay" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/brandon-rhodes/assay";
|
||||||
|
description = "Attempt to write a Python testing framework I can actually stand";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ zane ];
|
||||||
|
};
|
||||||
|
}
|
@ -754,6 +754,8 @@ in {
|
|||||||
|
|
||||||
aspy-yaml = callPackage ../development/python-modules/aspy.yaml { };
|
aspy-yaml = callPackage ../development/python-modules/aspy.yaml { };
|
||||||
|
|
||||||
|
assay = callPackage ../development/python-modules/assay { };
|
||||||
|
|
||||||
assertpy = callPackage ../development/python-modules/assertpy { };
|
assertpy = callPackage ../development/python-modules/assertpy { };
|
||||||
|
|
||||||
asterisk-mbox = callPackage ../development/python-modules/asterisk-mbox { };
|
asterisk-mbox = callPackage ../development/python-modules/asterisk-mbox { };
|
||||||
|
Loading…
Reference in New Issue
Block a user