Merge pull request #73482 from ryneeverett/fix-http-prompt

http-prompt: fix build
This commit is contained in:
Jörg Thalheim 2019-11-16 09:50:41 +00:00 committed by GitHub
commit c19b3dccce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, pythonPackages, httpie }: { stdenv, fetchFromGitHub, python3Packages, httpie }:
pythonPackages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
pname = "http-prompt"; pname = "http-prompt";
version = "1.0.0"; version = "1.0.0";
@ -11,11 +11,11 @@ pythonPackages.buildPythonApplication rec {
sha256 = "0kngz2izcqjphbrdkg489p0xmf65xjc8ki1a2szcc8sgwc7z74xy"; sha256 = "0kngz2izcqjphbrdkg489p0xmf65xjc8ki1a2szcc8sgwc7z74xy";
}; };
propagatedBuildInputs = with pythonPackages; [ propagatedBuildInputs = with python3Packages; [
click click
httpie httpie
parsimonious parsimonious
prompt_toolkit (python.pkgs.callPackage ../../../development/python-modules/prompt_toolkit/1.nix {})
pygments pygments
six six
]; ];
@ -30,6 +30,5 @@ pythonPackages.buildPythonApplication rec {
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ matthiasbeyer ]; maintainers = with maintainers; [ matthiasbeyer ];
platforms = platforms.linux ++ platforms.darwin; platforms = platforms.linux ++ platforms.darwin;
broken = true;
}; };
} }