1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

python39Packages.pycangjie: fix version format

This commit is contained in:
Sandro Jäckel 2021-10-31 13:26:07 +01:00
parent 7469b8b84b
commit ee62f3ea0a
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -11,22 +11,18 @@
, cython
}:
let
rev = "361bb413203fd43bab624d98edf6f7d20ce6bfd3";
in
buildPythonPackage {
pname = "pycangjie";
version = "1.3_rev_${rev}";
version = "unstable-2015-05-03";
format = "other";
src = fetchFromGitHub {
owner = "Cangjians";
repo = "pycangjie";
inherit rev;
rev = "361bb413203fd43bab624d98edf6f7d20ce6bfd3";
sha256 = "sha256-sS0Demzm89WtEIN4Efz0OTsUQ/c3gIX+/koekQGOca4=";
};
nativeBuildInputs = [ pkg-config libtool autoconf automake cython ];
buildInputs = [ libcangjie sqlite ];