mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 05:37:40 +03:00
buku: 2.4 -> 2.5
This commit is contained in:
parent
58e46e2b8f
commit
d6f1c52735
@ -1,21 +1,22 @@
|
|||||||
{ stdenv, pythonPackages, fetchFromGitHub,
|
{ stdenv, pythonPackages, fetchFromGitHub,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
pythonPackages.buildPythonApplication rec {
|
with pythonPackages; buildPythonApplication rec {
|
||||||
version = "2.4";
|
version = "2.5";
|
||||||
name = "buku-${version}";
|
name = "buku-${version}";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "jarun";
|
owner = "jarun";
|
||||||
repo = "buku";
|
repo = "buku";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0rmvlpp1pzzgn1hf87ksigj9kp60gfwkvxymb4wiz7dqa57b1q0n";
|
sha256 = "0m6km37zylinsblwm2p8pm760xlsf9m82xyws3762xs8zxbnfmsd";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
pythonPackages.cryptography
|
cryptography
|
||||||
pythonPackages.beautifulsoup4
|
beautifulsoup4
|
||||||
];
|
];
|
||||||
|
propagatedBuildInputs = [ beautifulsoup4 ];
|
||||||
|
|
||||||
phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
|
phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user