1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 19:51:17 +00:00

python310Packages.expecttest: 0.1.3 -> 0.1.4

Diff: https://github.com/ezyang/expecttest/compare/v0.1.3...v0.1.4
This commit is contained in:
Robert Schütz 2022-12-20 06:26:38 -08:00 committed by Robert Schütz
parent c89dbd750d
commit 819ddb2d65

View file

@ -8,17 +8,17 @@
buildPythonPackage rec {
pname = "expecttest";
version = "0.1.3";
version = "0.1.4";
format = "pyproject";
src = fetchFromGitHub {
owner = "ezyang";
repo = pname;
rev = "v${version}";
hash = "sha256-5CnpVFSbf3FcAa06Y7atG8sxu8uevpfrliB2HuVcrx0=";
hash = "sha256-BFM0jFWXfH72n9XuFtU9URW8LWGPVJncXniBV5547W4=";
};
buildInputs = [ poetry-core ];
nativeBuildInputs = [ poetry-core ];
checkInputs = [ hypothesis pytestCheckHook ];