python312Packages.osmnx: 1.9.3 → 2.0.0 (#360529)
[NixPkgs.git] / pkgs / development / python-modules / tweedledum / default.nix
blobbb7f83599ecdb5b6a56332cc569832e745eb3038
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   cmake,
6   ninja,
7   scikit-build,
8   # Check Inputs
9   pytestCheckHook,
12 buildPythonPackage rec {
13   pname = "tweedledum";
14   version = "1.1.1";
15   format = "pyproject";
17   src = fetchFromGitHub {
18     owner = "boschmitt";
19     repo = "tweedledum";
20     rev = "v${version}";
21     hash = "sha256-wgrY5ajaMYxznyNvlD0ul1PFr3W8oV9I/OVsStlZEBM=";
22   };
24   postPatch = ''
25     sed -i '/\[project\]/a version = "${version}"' pyproject.toml
26     sed -i '/\[project\]/a name = "tweedledum"' pyproject.toml
27   '';
29   nativeBuildInputs = [
30     cmake
31     ninja
32     scikit-build
33   ];
34   dontUseCmakeConfigure = true;
36   pythonImportsCheck = [ "tweedledum" ];
38   nativeCheckInputs = [ pytestCheckHook ];
39   pytestFlagsArray = [ "python/test" ];
41   meta = with lib; {
42     description = "Library for synthesizing and manipulating quantum circuits";
43     homepage = "https://github.com/boschmitt/tweedledum";
44     license = licenses.mit;
45     maintainers = with maintainers; [ drewrisinger ];
46   };