python313Packages.traits: fix build (#373698)
[NixPkgs.git] / pkgs / development / python-modules / assay / default.nix
blobb71a3b9be0900c5d49b08aada74fb3da601f681e
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pythonAtLeast,
6 }:
8 buildPythonPackage rec {
9   pname = "assay";
10   version = "0-unstable-2024-05-09";
11   format = "setuptools";
13   src = fetchFromGitHub {
14     owner = "brandon-rhodes";
15     repo = pname;
16     rev = "74617d70e77afa09f58b3169cf496679ac5d5621";
17     hash = "sha256-zYpLtcXZ16EJWKSCqxFkSz/G9PwIZEQGBrYiJKuqnc4=";
18   };
20   pythonImportsCheck = [ "assay" ];
22   meta = with lib; {
23     homepage = "https://github.com/brandon-rhodes/assay";
24     description = "Attempt to write a Python testing framework I can actually stand";
25     license = licenses.mit;
26     maintainers = with maintainers; [ zane ];
27   };