mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
12 lines
316 B
Nix
12 lines
316 B
Nix
|
{ testers, fetchDebianPatch, ... }:
|
||
|
|
||
|
{
|
||
|
simple = testers.invalidateFetcherByDrvHash fetchDebianPatch {
|
||
|
pname = "pysimplesoap";
|
||
|
version = "1.16.2";
|
||
|
debianRevision = "5";
|
||
|
patch = "Add-quotes-to-SOAPAction-header-in-SoapClient";
|
||
|
hash = "sha256-xA8Wnrpr31H8wy3zHSNfezFNjUJt1HbSXn3qUMzeKc0=";
|
||
|
};
|
||
|
}
|