python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / package-management / poetry2conda / default.nix
blob1e570156f8c96d6b2dd7c5e1f6d223f5974b337f
1 { lib
2 , fetchFromGitHub
3 , python3
4 }:
6 with python3.pkgs; buildPythonApplication rec {
7   pname = "poetry2conda";
8   version = "0.3.0";
10   format = "pyproject";
12   src = fetchFromGitHub {
13     owner = "dojeda";
14     repo = pname;
15     rev = "v${version}";
16     sha256 = "sha256-UqNoEGgStvqtxhYwExk7wO4SvATaM2kGaFbB5ViJa7U=";
17   };
19   nativeBuildInputs = [ poetry ];
21   propagatedBuildInputs = [
22     poetry-semver
23     toml
24   ];
26   checkInputs = [
27     pytest-mock
28     pytestCheckHook
29     pyyaml
30   ];
32   meta = with lib; {
33     description = "A script to convert a Python project declared on a pyproject.toml to a conda environment";
34     homepage = "https://github.com/dojeda/poetry2conda";
35     license = licenses.mit;
36     maintainers = with maintainers; [ cpcloud ];
37   };